home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Graphics Programming (2nd Edition)
/
Visual Basic Graphics Programming 2nd Edition.iso
/
OldSrc
/
CH1
/
SRC
/
WRONG.FRM
< prev
Wrap
Text File
|
1996-01-04
|
1KB
|
59 lines
VERSION 4.00
Begin VB.Form WrongForm
AutoRedraw = -1 'True
BackColor = &H00FFFFFF&
BorderStyle = 3 'Fixed Dialog
Caption = "Wrong"
ClientHeight = 1110
ClientLeft = 2220
ClientTop = 2325
ClientWidth = 1785
Height = 1800
Left = 2160
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1110
ScaleWidth = 1785
ShowInTaskbar = 0 'False
Top = 1695
Width = 1905
Begin VB.Menu mnuFile
Caption = "&File"
Begin VB.Menu mnuFileExit
Caption = "E&xit"
End
End
End
Attribute VB_Name = "WrongForm"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Dim i As Single
Me.Width = 1440
Me.Height = 1440
Scale (0, 100)-(100, 0)
For i = 10 To 90 Step 10
Line (0, i)-(100, i)
Line (i, 0)-(i, 100)
Next i
End Sub
Private Sub Form_Unload(Cancel As Integer)
If Not RightForm Is Nothing Then _
Unload RightForm
End Sub
Private Sub mnuFileExit_Click()
Unload Me
End Sub